Method: Vips::Image#>>

Defined in:
lib/vips8/image.rb

#>>(other) ⇒ Image

Integer right shift with an image, constant or array.

Parameters:

  • other (Image, Real, Array<Real>)

    shift right by this much

Returns:

  • (Image)

    result of right shift

[View source]

790
791
792
793
# File 'lib/vips8/image.rb', line 790

def >>(other)
    other.is_a?(Vips::Image) ? 
        boolean(other, :rshift) : boolean_const(other, :rshift)
end